home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / date / adxdown.dfm / adxdown.txt
Text File  |  1996-04-08  |  2KB  |  98 lines

  1. object DownloadDialog: TDownloadDialog
  2.   Left = 381
  3.   Top = 352
  4.   ActiveControl = Directory
  5.   BorderStyle = bsDialog
  6.   Caption = 'Protocol Download'
  7.   ClientHeight = 233
  8.   ClientWidth = 425
  9.   Font.Color = clBlack
  10.   Font.Height = -13
  11.   Font.Name = 'Arial'
  12.   Font.Style = [fsBold]
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   TextHeight = 16
  16.   object Panel1: TPanel
  17.     Left = 8
  18.     Top = 8
  19.     Width = 305
  20.     Height = 73
  21.     TabOrder = 0
  22.     object DestDirLabel: TLabel
  23.       Left = 8
  24.       Top = 11
  25.       Width = 61
  26.       Height = 16
  27.       Caption = 'Directory:'
  28.     end
  29.     object FileNameLabel: TLabel
  30.       Left = 8
  31.       Top = 44
  32.       Width = 68
  33.       Height = 16
  34.       Caption = 'File name:'
  35.       Enabled = False
  36.     end
  37.     object Directory: TEdit
  38.       Left = 88
  39.       Top = 8
  40.       Width = 209
  41.       Height = 24
  42.       MaxLength = 80
  43.       TabOrder = 0
  44.     end
  45.     object FileName: TEdit
  46.       Left = 88
  47.       Top = 40
  48.       Width = 209
  49.       Height = 24
  50.       Enabled = False
  51.       MaxLength = 80
  52.       TabOrder = 1
  53.     end
  54.   end
  55.   object Protocols: TRadioGroup
  56.     Left = 8
  57.     Top = 96
  58.     Width = 305
  59.     Height = 129
  60.     Caption = '&Protocols:'
  61.     Columns = 2
  62.     ItemIndex = 6
  63.     Items.Strings = (
  64.       'Xmodem'
  65.       'XmodemCRC'
  66.       'Xmodem1K'
  67.       'Xmodem1K-G'
  68.       'Ymodem'
  69.       'Ymodem-G'
  70.       'Zmodem'
  71.       'Kermit'
  72.       'ASCII'
  73.       'B+')
  74.     TabOrder = 1
  75.     OnClick = ProtocolsClick
  76.   end
  77.   object OK: TButton
  78.     Left = 328
  79.     Top = 16
  80.     Width = 89
  81.     Height = 33
  82.     Caption = 'OK'
  83.     Default = True
  84.     TabOrder = 2
  85.     OnClick = OKClick
  86.   end
  87.   object Cancel: TButton
  88.     Left = 328
  89.     Top = 64
  90.     Width = 89
  91.     Height = 33
  92.     Cancel = True
  93.     Caption = 'Cancel'
  94.     TabOrder = 3
  95.     OnClick = CancelClick
  96.   end
  97. end
  98.